home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Dialogs / DialogManagerUser.cp next >
Encoding:
Text File  |  1997-06-28  |  453 b   |  28 lines  |  [TEXT/CWIE]

  1. // DialogManagerUser.cp
  2.  
  3. #ifndef DialogManagerUser_h
  4. #include "DialogManagerUser.h"
  5. #endif
  6. #ifndef TextEditUser_h
  7. #include "TextEditUser.h"
  8. #endif
  9. #ifndef MenuManagerUser_h
  10. #include "MenuManagerUser.h"
  11. #endif
  12. #ifndef Integers_h
  13. #include "Integers.h"
  14. #endif
  15.  
  16. DialogManagerUser::DialogManagerUser()
  17.   {
  18.     static bool initialized = false;
  19.     
  20.     if ( !initialized )
  21.       {
  22.         MenuManagerUser();
  23.         TextEditUser();
  24.         InitDialogs( 0 );
  25.         initialized = true;
  26.       }
  27.   }
  28.